home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / dos / skipatou.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-15  |  146 b   |  11 lines

  1. #include "mystuff.h"
  2.  
  3. unsigned int skip_atou(const char **s)
  4. {
  5.   int i=0;
  6.   
  7.   while (isdigit(**s))
  8.     i = i*10 + *((*s)++) - '0';
  9.   return i;
  10. }
  11.